home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / SOUND / MP3CONV / !MP3Conv / c / sndriscos < prev    next >
Text File  |  1998-04-08  |  277b  |  19 lines

  1. #include "common.h"
  2. #include "sound.h"
  3.  
  4. int sound_init(int audiofd, layer *info, int stereo) {
  5.     return 0;
  6. }
  7.  
  8. int sound_open() {
  9.     return 0;
  10. }
  11.  
  12. int sound_close(int audiofd) {
  13.     return 0;
  14. }
  15.  
  16. int sound_write(int audiofd, const void *buffer, size_t count) {
  17.     return 0;
  18. }
  19.